3.15.48 \(\int (a c+(b c+a d) x+b d x^2) \, dx\)

Optimal. Leaf size=28 \[ \frac {1}{2} x^2 (a d+b c)+a c x+\frac {1}{3} b d x^3 \]

________________________________________________________________________________________

Rubi [A]  time = 0.01, antiderivative size = 28, normalized size of antiderivative = 1.00, number of steps used = 1, number of rules used = 0, integrand size = 19, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.000, Rules used = {} \begin {gather*} \frac {1}{2} x^2 (a d+b c)+a c x+\frac {1}{3} b d x^3 \end {gather*}

Antiderivative was successfully verified.

[In]

Int[a*c + (b*c + a*d)*x + b*d*x^2,x]

[Out]

a*c*x + ((b*c + a*d)*x^2)/2 + (b*d*x^3)/3

Rubi steps

\begin {align*} \int \left (a c+(b c+a d) x+b d x^2\right ) \, dx &=a c x+\frac {1}{2} (b c+a d) x^2+\frac {1}{3} b d x^3\\ \end {align*}

________________________________________________________________________________________

Mathematica [A]  time = 0.00, size = 32, normalized size = 1.14 \begin {gather*} a c x+\frac {1}{2} a d x^2+\frac {1}{2} b c x^2+\frac {1}{3} b d x^3 \end {gather*}

Antiderivative was successfully verified.

[In]

Integrate[a*c + (b*c + a*d)*x + b*d*x^2,x]

[Out]

a*c*x + (b*c*x^2)/2 + (a*d*x^2)/2 + (b*d*x^3)/3

________________________________________________________________________________________

IntegrateAlgebraic [F]  time = 0.00, size = 0, normalized size = 0.00 \begin {gather*} \int \left (a c+(b c+a d) x+b d x^2\right ) \, dx \end {gather*}

Verification is not applicable to the result.

[In]

IntegrateAlgebraic[a*c + (b*c + a*d)*x + b*d*x^2,x]

[Out]

IntegrateAlgebraic[a*c + (b*c + a*d)*x + b*d*x^2, x]

________________________________________________________________________________________

fricas [A]  time = 0.34, size = 26, normalized size = 0.93 \begin {gather*} \frac {1}{3} x^{3} d b + \frac {1}{2} x^{2} c b + \frac {1}{2} x^{2} d a + x c a \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(a*c+(a*d+b*c)*x+b*d*x^2,x, algorithm="fricas")

[Out]

1/3*x^3*d*b + 1/2*x^2*c*b + 1/2*x^2*d*a + x*c*a

________________________________________________________________________________________

giac [A]  time = 0.16, size = 24, normalized size = 0.86 \begin {gather*} \frac {1}{3} \, b d x^{3} + a c x + \frac {1}{2} \, {\left (b c + a d\right )} x^{2} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(a*c+(a*d+b*c)*x+b*d*x^2,x, algorithm="giac")

[Out]

1/3*b*d*x^3 + a*c*x + 1/2*(b*c + a*d)*x^2

________________________________________________________________________________________

maple [A]  time = 0.05, size = 25, normalized size = 0.89 \begin {gather*} \frac {b d \,x^{3}}{3}+a c x +\frac {\left (a d +b c \right ) x^{2}}{2} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(a*c+(a*d+b*c)*x+b*d*x^2,x)

[Out]

a*c*x+1/2*(a*d+b*c)*x^2+1/3*b*d*x^3

________________________________________________________________________________________

maxima [A]  time = 1.06, size = 24, normalized size = 0.86 \begin {gather*} \frac {1}{3} \, b d x^{3} + a c x + \frac {1}{2} \, {\left (b c + a d\right )} x^{2} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(a*c+(a*d+b*c)*x+b*d*x^2,x, algorithm="maxima")

[Out]

1/3*b*d*x^3 + a*c*x + 1/2*(b*c + a*d)*x^2

________________________________________________________________________________________

mupad [B]  time = 0.04, size = 25, normalized size = 0.89 \begin {gather*} \frac {b\,d\,x^3}{3}+\left (\frac {a\,d}{2}+\frac {b\,c}{2}\right )\,x^2+a\,c\,x \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(a*c + x*(a*d + b*c) + b*d*x^2,x)

[Out]

x^2*((a*d)/2 + (b*c)/2) + a*c*x + (b*d*x^3)/3

________________________________________________________________________________________

sympy [A]  time = 0.07, size = 26, normalized size = 0.93 \begin {gather*} a c x + \frac {b d x^{3}}{3} + x^{2} \left (\frac {a d}{2} + \frac {b c}{2}\right ) \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(a*c+(a*d+b*c)*x+b*d*x**2,x)

[Out]

a*c*x + b*d*x**3/3 + x**2*(a*d/2 + b*c/2)

________________________________________________________________________________________